Home > biomechZoo > Toolbox > Mac Fixes > uigetfolder.m

uigetfolder

PURPOSE ^

folder = UIGETFOLDER(title,initia_path) sets up standard Windows browse for folder dialog box.

SYNOPSIS ^

function folder = uigetfolder(title, initial_path)

DESCRIPTION ^

 folder = UIGETFOLDER(title,initia_path) sets up standard Windows browse for folder dialog box.

 ARGUMENTS
  title         ...  title string (OPTIONAL)
  initial_path  ...  initial path (OPTIONAL, defaults to PWD)
 
 RETURNS
  folder        ...  selected folder (empty string if dialog cancelled)
  
 Examples:    folder = uigetfolder                          - default title and initial path
               folder = uigetfolder('Select results folder') - default initial path
               folder = uigetfolder([], 'C:\Program Files')  - default title

 See also UIGETFILE, UIPUTFILE

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:
Generated on Sun 10-Mar-2024 22:39:06 by m2html © 2005